home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / misc / 39 / include / func_tab.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-07-17  |  311 b   |  17 lines

  1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  2. /* func_tab.h - version 1.0.2 */
  3.  
  4. struct func_tab {
  5.     char f_char;
  6.     int (*f_funct)();
  7. };
  8.  
  9. extern struct func_tab cmdlist[];
  10.  
  11. struct ext_func_tab {
  12.     char *ef_txt;
  13.     int (*ef_funct)();
  14. };
  15.  
  16. extern struct ext_func_tab extcmdlist[];
  17.